home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / lib / pmake / rdist.mk < prev    next >
Text File  |  1988-03-24  |  544b  |  21 lines

  1. # For rdist, take the standard makefile and pass in the directory to rdist
  2. # and the name of the binary/binaries not to rdist.
  3. # Allow the user to specify extra flags (like -v) for the rdist via
  4. # the DISTFLAGS variable.
  5.  
  6. DISTFILE     = /sprite/lib/misc/distfile.command
  7. DISTFLAGS     += 
  8. #ifndef DIST_EXCEPT
  9. # ifdef PROG
  10.  DIST_EXCEPT     = -d EXCEPT=\(${PROG}\)
  11. # elifdef PROGRAM
  12.  DIST_EXCEPT    = -d EXCEPT=\(${PROGRAM}\)
  13. # else
  14.  DIST_EXCEPT     =
  15. # endif
  16. #endif
  17.  
  18. Rdist        :: .PRECIOUS .NOTMAIN
  19.     rdist ${DISTFLAGS} -f ${DISTFILE} -d DIR=`pwd` ${DIST_EXCEPT}
  20.  
  21.